// Format
// TabName : <Condition> : <Condition> : ...

// Possible conditions
//  startsWith(string)          Starts with "string"
//  contains(string)            Contains "string"
//  contains(string,4)          Contains "string" 4 times
//  endsWith(string)            Ends with "string"
//  equals(string)              Equals "string" case-sensitive
//  equalsIgnoreCase(string)    Equals "string" not case-sensitive
//  charAtEquals(3,c)           Char at position 4 (first position is 0) is a "c"
//  regex([0-9][a-z][A-Z])      Matches given regular expression (advanced)



Guild : startsWith(Guild >)
Guild : startsWith(G >)

Party : startsWith(Party >)
Party : startsWith(P >)

Private : startsWith(PM >)
Private : startsWith(PM <)
Private : startsWith(From )
Private : startsWith(To )